home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / o.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  132 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19. float o_data[][2] = {
  20.     {2.975610, 9.603255},
  21.     {2.878049, 9.342828},
  22.     {2.292683, 9.131231},
  23.     {2.048780, 8.691760},
  24.     {1.707317, 8.528993},
  25.     {1.658537, 7.731434},
  26.     {0.878049, 7.047813},
  27.     {1.349594, 5.550356},
  28.     {0.569106, 5.029501},
  29.     {1.528455, 4.443540},
  30.     {0.991870, 3.434385},
  31.     {1.967480, 3.955239},
  32.     {1.772358, 2.994914},
  33.     {2.422764, 3.825025},
  34.     {2.829268, 3.092574},
  35.     {3.154472, 3.971516},
  36.     {3.512195, 3.727365},
  37.     {3.772358, 4.264496},
  38.     {4.130081, 4.524924},
  39.     {4.162601, 4.996948},
  40.     {4.699187, 5.403866},
  41.     {4.471545, 6.461852},
  42.     {5.219512, 7.243133},
  43.     {4.439024, 8.105799},
  44.     {5.235772, 8.756866},
  45.     {4.065041, 8.870804},
  46.     {4.991870, 9.391658},
  47.     {3.853658, 9.228891},
  48.     {4.390244, 9.912513},
  49.     {3.463415, 9.407935},
  50.     {3.674797, 9.912513},
  51.     {2.829268, 9.342828},
  52.     {2.959350, 9.603255},
  53.  
  54. };
  55.  
  56. draw_o() {
  57.  
  58.     bgntmesh();
  59.     v2f(o_data[0]);
  60.     v2f(o_data[1]);
  61.     v2f(o_data[2]);
  62.     v2f(o_data[3]);
  63.     v2f(o_data[4]);
  64.     v2f(o_data[5]);
  65.     v2f(o_data[6]);
  66.     v2f(o_data[7]);
  67.     v2f(o_data[8]);
  68.     v2f(o_data[9]);
  69.     v2f(o_data[10]);
  70.     v2f(o_data[11]);
  71.     v2f(o_data[12]);
  72.     v2f(o_data[13]);
  73.     v2f(o_data[14]);
  74.     v2f(o_data[15]);
  75.     v2f(o_data[16]);
  76.     v2f(o_data[17]);
  77.     v2f(o_data[18]);
  78.     v2f(o_data[19]);
  79.     v2f(o_data[20]);
  80.     v2f(o_data[21]);
  81.     v2f(o_data[22]);
  82.     v2f(o_data[23]);
  83.     v2f(o_data[24]);
  84.     v2f(o_data[25]);
  85.     v2f(o_data[26]);
  86.     v2f(o_data[27]);
  87.     v2f(o_data[28]);
  88.     v2f(o_data[29]);
  89.     v2f(o_data[30]);
  90.     v2f(o_data[31]);
  91.     v2f(o_data[32]);
  92.     endtmesh();
  93.  
  94.     bgnline();
  95.     v2f(o_data[0]);
  96.     v2f(o_data[2]);
  97.     v2f(o_data[4]);
  98.     v2f(o_data[6]);
  99.     v2f(o_data[8]);
  100.     v2f(o_data[10]);
  101.     v2f(o_data[12]);
  102.     v2f(o_data[14]);
  103.     v2f(o_data[16]);
  104.     v2f(o_data[18]);
  105.     v2f(o_data[20]);
  106.     v2f(o_data[22]);
  107.     v2f(o_data[24]);
  108.     v2f(o_data[26]);
  109.     v2f(o_data[28]);
  110.     v2f(o_data[30]);
  111.     v2f(o_data[32]);
  112.     v2f(o_data[31]);
  113.     v2f(o_data[29]);
  114.     v2f(o_data[27]);
  115.     v2f(o_data[25]);
  116.     v2f(o_data[23]);
  117.     v2f(o_data[21]);
  118.     v2f(o_data[19]);
  119.     v2f(o_data[17]);
  120.     v2f(o_data[15]);
  121.     v2f(o_data[13]);
  122.     v2f(o_data[11]);
  123.     v2f(o_data[9]);
  124.     v2f(o_data[7]);
  125.     v2f(o_data[5]);
  126.     v2f(o_data[3]);
  127.     v2f(o_data[1]);
  128.     endline();
  129.  
  130. }
  131.  
  132.